home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1993 July / Internet Tools.iso / RockRidge / mail / mm / mm-0.90 / help.h < prev    next >
Encoding:
C/C++ Source or Header  |  1990-12-18  |  1014 b   |  38 lines

  1. /*
  2.  * Copyright (c) 1986, 1990 by The Trustees of Columbia University in
  3.  * the City of New York.  Permission is granted to any individual or
  4.  * institution to use, copy, or redistribute this software so long as it
  5.  * is not sold for profit, provided this copyright notice is retained.
  6.  */
  7.  
  8. #ifdef RCSID
  9. #ifndef lint
  10. static char *help_rcsid = "$Header: /f/src2/encore.bin/cucca/mm/tarring-it-up/RCS/help.h,v 2.1 90/10/04 18:24:29 melissa Exp $";
  11. #endif
  12. #endif /* RCSID */
  13.  
  14. /* help file support */
  15.  
  16. #ifndef FALSE
  17. #define FALSE (0)
  18. #define TRUE (!FALSE)
  19. #endif /* FALSE */
  20.  
  21. #define DEF_SRCFILE "./help.cpp"    /* defaults in case not in */
  22. #define DEF_HLPFILE "./mm.help"        /* arguments */
  23.  
  24. #define HELPLEVEL 5            /* max number of strings per cmd */
  25. #define HELP_TOP 0
  26. #define HELP_READ 1
  27. #define HELP_SEND 2
  28. #define HELP_TOPIC 3
  29. #define HELP_VARS 4
  30. #define HELP_ALL HELP_TOP HELP_READ HELP_SEND
  31.  
  32. #define INTERLEN 3            /* XXX length of "@@\n" */
  33.  
  34. typedef struct hlp_offset {
  35.     long offset;
  36.     int length;
  37. } hlp_offset;
  38.